home *** CD-ROM | disk | FTP | other *** search
/ QuickTime 1.0 for Developers / QuickTime 1.0 for Developers.iso / Programming Stuff / Movies Libraries / Movies Names.c next >
Text File  |  1991-09-06  |  3KB  |  150 lines

  1. /*
  2.                 File:        Movies Names.c
  3.             
  4.                 Contains:    xxx put contents here xxx
  5.             
  6.                 Written by:    xxx put writers here xxx
  7.             
  8.                 Copyright:    © 1990 by Apple Computer, Inc., all rights reserved.
  9.             
  10.     This file is used in these builds: Warhol
  11.  
  12.                 Change History (most recent first):
  13.             
  14.          <2>     8/13/91    JB        Updated to lastest error messages
  15.          <1>     9/12/90    dvb        first checked in
  16.             
  17.                 To Do:
  18.             */
  19.  
  20. /* Movies Names.c
  21.     A Movies Library
  22.  
  23.     by Jim Batson, Bruce Leak, David Van Brink
  24.     Copyright 1990 Apple Computer, Inc. All rights reserved.
  25. */
  26.  
  27.  
  28. /*---------------------------------*/
  29.  
  30. /* Index with "[error - firstMoviesError]" */
  31. char *moviesErrorNames[] =
  32.     {
  33.     "could Not Resolve Data Ref",
  34.     "bad Image Description",
  35.     "bad Public Movie Atom",
  36.     "cant Find Handler",
  37.     "cant Open Handler",
  38.     "bad Component Type",
  39.     "no Media Handler",
  40.     "no Data Handler",
  41.     "invalid Media",
  42.     "invalid Track",
  43.     "invalid Movie",
  44.     "invalid Sample Table",
  45.     "invalid Data Ref",
  46.     "invalid Handler",
  47.     "invalid Duration",
  48.     "invalid Time",
  49.     "cant Put Public Movie Atom",
  50.     "bad Edit List",
  51.     "media Types Dont Match",
  52.     "progress Proc Aborted",
  53.     "movie Toolbox Uninitialized",
  54.     "wffile Not Found",
  55.     "cant Create Single Fork File",
  56.     "invalid Edit State",
  57.     "non Matching Edit State",
  58.     "stale Edit State",
  59.     "user Data Item Not Found",
  60.     "max Size To Grow Too Small",
  61.     "bad Track Index",
  62.     "track ID Not Found",
  63.     "track Not In Movie",
  64.     "time Not In Track",
  65.     "time Not In Media",
  66.     "bad Edit Index",
  67.     "internal Quick Time Error",
  68.     "cant Enable Track",
  69.     "invalid Rect",
  70.     "invalid Sample Num",
  71.     "invalid Chunk Num",
  72.     "invalid Sample Desc Index",
  73.     "invalid Chunk Cache",
  74.     "invalid Sample Description",
  75.     "data Not Open For Read",
  76.     "data Not Open For Write",
  77.     "data Already Open For Write",
  78.     "data Already Closed",
  79.     "end Of Data Reached",
  80.     "data No Data Ref",
  81.     "no Movie In Data Fork",
  82.     "invalid Data Ref Container",
  83.     "bad Data Ref Index",
  84.     "invalid Blob",
  85.     "invalid Component ID",
  86.     "valid Instances Exist",
  87.     "component Not Captured",
  88.     "last Component Error",
  89.     };
  90.  
  91. short moviesErrorNums[] = {
  92.     -2000,
  93.     -2001,
  94.     -2002,
  95.     -2003,
  96.     -2004,
  97.     -2005,
  98.     -2006,
  99.     -2007,
  100.     -2008,
  101.     -2009,
  102.     -2010,
  103.     -2011,
  104.     -2012,
  105.     -2013,
  106.     -2014,
  107.     -2015,
  108.     -2016,
  109.     -2017,
  110.     -2018,
  111.     -2019,
  112.     -2020,
  113.     -2021,
  114.     -2022,            
  115.     -2023,
  116.     -2024,
  117.     -2025,
  118.     -2026,
  119.     -2027,
  120.     -2028,
  121.     -2029,
  122.     -2030,
  123.     -2031,
  124.     -2032,
  125.     -2033,
  126.     -2034,
  127.     -2035,
  128.     -2036,
  129.     -2037,
  130.     -2038,
  131.     -2039,
  132.     -2040,
  133.     -2041,
  134.     -2042,    
  135.     -2043,    
  136.     -2044,
  137.     -2045,
  138.     -2046,
  139.     -2047,
  140.     -2048,                        
  141.     -2049,
  142.     -2050,
  143.     -2051,
  144.     -3000,
  145.     -3001,
  146.     -3002,
  147.     -3003,
  148.     0
  149.     };
  150.